concurrent access - определение. Что такое concurrent access
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:     

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое concurrent access - определение

MEASURES TO ENSURE CONCURRENT COMPUTING OPERATIONS GENERATE CORRECT RESULTS
Concurrent access; Global concurrency control; Multidatabase concurrency control; Modular concurrency control

Concurrency control         
In information technology and computer science, especially in the fields of computer programming, operating systems, multiprocessors, and databases, concurrency control ensures that correct results for concurrent operations are generated, while getting those results as quickly as possible.
Concurrent computing         
FORM OF COMPUTING IN WHICH SEVERAL COMPUTATIONS ARE EXECUTING DURING OVERLAPPING TIME PERIODS
Concurrent programming; Concurrent process; Concurrent programming language; Concurrent computation; Concurrent Programming; Concurrent algorithm; COPL; Process Communication Model (computing); Concurrent program; Concurrency (computing); Concurrent programming languages; Sequential programming; History of concurrent programming; List of languages supporting concurrent programming; Software concurrency
Concurrent computing is a form of computing in which several computations are executed concurrently—during overlapping time periods—instead of sequentially—with one completing before the next starts.
CREW PRAM         
ABSTRACT COMPUTER FOR DESIGNING PARALLEL ALGORITHMS
Parallel random access machine; Exclusive Read Exclusive Write; Concurrent Read Exclusive Write; Concurrent Read Concurrent Write; EREW; CRCW; Parallel random access model; Concurrent read, exclusive write; ERCW; Concurrent read, concurrent write; Exclusive read, concurrent write; Exclusive read, exclusive write; CRCW-PRAM; CRCW PRAM; EREW-PRAM; EREW PRAM; CREW-PRAM; CREW PRAM; ERCW-PRAM; ERCW PRAM; Concurrent random access machine; Parallel Random Access Machine; Parallel random-access machine
concurrent read, exclusive write PRAM.

Википедия

Concurrency control

In information technology and computer science, especially in the fields of computer programming, operating systems, multiprocessors, and databases, concurrency control ensures that correct results for concurrent operations are generated, while getting those results as quickly as possible.

Computer systems, both software and hardware, consist of modules, or components. Each component is designed to operate correctly, i.e., to obey or to meet certain consistency rules. When components that operate concurrently interact by messaging or by sharing accessed data (in memory or storage), a certain component's consistency may be violated by another component. The general area of concurrency control provides rules, methods, design methodologies, and theories to maintain the consistency of components operating concurrently while interacting, and thus the consistency and correctness of the whole system. Introducing concurrency control into a system means applying operation constraints which typically result in some performance reduction. Operation consistency and correctness should be achieved with as good as possible efficiency, without reducing performance below reasonable levels. Concurrency control can require significant additional complexity and overhead in a concurrent algorithm compared to the simpler sequential algorithm.

For example, a failure in concurrency control can result in data corruption from torn read or write operations.